home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / egs-tools / egs_dev-disk / egsdemos / egsexamples / requester / font&scrmode / includes.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  1.1 KB  |  57 lines

  1. /*
  2. ** Extra Amiga-Includes
  3. */
  4. #define __DICE_INLINE
  5.  
  6.  
  7. #include <stdlib.h>
  8. #include <stdio.h>
  9. #include <dos/dos.h>
  10. #include <exec/memory.h>
  11. #include <proto/dos.h>
  12. #include <proto/exec.h>
  13.  
  14. /*
  15. ** This are all EGS-Includes
  16. **
  17. */
  18.  
  19. #include <egs/egs.h>
  20. #include <egs/egsblit.h>
  21. #include <egs/egslayers.h>
  22. #include <egs/egsgfx.h>
  23. #include <egs/egsintuigfx.h>
  24. #include <egs/egsintui.h>
  25. #include <egs/egsgadbox.h>
  26. #include <egs/egsrequest.h>
  27. #include <egs/egb/gbscrollbox.h>
  28. #include <egs/egb/gbmenuselect.h>
  29. #include <egs/egb/gbradio.h>
  30. #include <egs/egb/gbselect.h>
  31. #include <egs/egb/gbsets.h>
  32. #include <egs/egb/gbtextinfo.h>
  33. #include <egs/egb/gbtwodimprop.h>
  34.  
  35. /*
  36. ** Include Proto and Pragma Files
  37. */
  38.  
  39. #include <egs/proto/egs.h>
  40. #include <egs/proto/egsblit.h>
  41. #include <egs/proto/egslayers.h>
  42. #include <egs/proto/egsgfx.h>
  43. #include <egs/proto/egsintui.h>
  44. #include <egs/proto/egsgadbox.h>
  45. #include <egs/proto/egsrequest.h>
  46. #include <egs/proto/gbmenuselect.h>
  47. #include <egs/proto/gbradio.h>
  48. #include <egs/proto/gbscrollbox.h>
  49. #include <egs/proto/gbselect.h>
  50. #include <egs/proto/gbsets.h>
  51. #include <egs/proto/gbtextinfo.h>
  52. //#include <egs/proto/gbtwodimprop.h>
  53.  
  54. /*
  55. ** END
  56. */
  57.